home *** CD-ROM | disk | FTP | other *** search
/ Nebula 1 / Nebula One.iso / Internet / News / Alexandra.0.82 / Source / MiscFindPanel.bproj / Composer.h next >
Encoding:
C/C++ Source or Header  |  1996-01-30  |  756 b   |  41 lines

  1.  
  2. #import <appkit/appkit.h>
  3.  
  4. @interface Composer:Object
  5. {
  6.     id    newsgroupCell;
  7.     id    subjectCell;
  8.     id    theText;
  9.     id  theArticleViewControl;
  10.     id  window;
  11.     id  followupButton;
  12.     id nntpServer;
  13.     id headerForm;
  14.     id myOwner;
  15.  
  16.     char *newsgroups;
  17.     char *subject;
  18.     char *references;
  19.     NXStream *theQuotingStream;
  20.     BOOL insert_refs;
  21.  
  22.     id expireButton;
  23.     id dateView;
  24. }
  25. - getDefaults;
  26. - free;
  27. - followup:sender;
  28. - includeArticle:sender;
  29. - post:sender;
  30. - preparePostTo:(List *)newsgroupList selArticle:(id)anArticle;
  31. - window;
  32. - setNntpServer:(id)nntp;
  33. - setArticleViewControl:(id)control;
  34. - printText:sender;
  35. - windowWillClose:sender;
  36. - (BOOL)asciiBody;
  37. - windowWillMiniaturize:sender toMiniwindow:miniwindow;
  38.  
  39. - theText;
  40. @end
  41.